home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-10-16 | 925 b | 25 lines | [TEXT/KAHL] |
- //=============================================================================
- // Little Smalltalk, version 3
- // Written by Tim Budd, Oregon State University, July 1988
- //
- // Symantec Think Class Library interface code
- // ©Julian Barkway, August 1994 , all rights reserved.
- //
- // CGraphicsPane.cp
- // ----------------
- // This class implements a graphics pane as a sub-class of CPicture.
- //=============================================================================
-
- #include "CGraphicsPane.h"
-
-
- //={OVERRIDE}==================================================================
- // Initialise a shiny new graphics pane object.
- //=============================================================================
- void CGraphicsPane::IGraphicsPane (CView *encl, CBureaucrat *super,
- SizingOption hSizing, SizingOption vSizing)
- {
- IPicture (encl, super, 1, 1, 0, 0, hSizing, vSizing);
- FitToEnclosure (TRUE, TRUE);
- }
-